Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
The c8 npm package is a code coverage tool for JavaScript that works with the native V8 coverage functionality built into Node.js. It collects and reports on the test coverage of your code, helping you understand which parts of your codebase are covered by tests and which are not.
Code Coverage Reporting
This command runs your Node.js script with coverage tracking, and upon completion, it outputs a coverage report. The report shows the percentage of code executed by your tests, helping you identify untested parts of your codebase.
npx c8 node script.js
Integration with Testing Frameworks
You can use c8 in conjunction with testing frameworks like Mocha. This command will run Mocha tests with coverage tracking, and then generate a coverage report.
npx c8 mocha
Custom Report Formats
c8 allows you to specify one or more reporters that determine the format of the coverage report. In this example, it generates both 'lcov' and 'text' format reports.
npx c8 --reporter=lcov --reporter=text node script.js
Check Coverage Thresholds
This feature allows you to enforce coverage thresholds. If the coverage falls below the specified percentages for lines, functions, or branches, c8 will exit with a non-zero status, which is useful for CI/CD pipelines.
npx c8 --check-coverage --lines 95 --functions 95 --branches 95 node script.js
Previously known as Istanbul, nyc is another popular code coverage tool for JavaScript. It works with a wide range of testing frameworks and can instrument code for coverage reporting. Compared to c8, nyc has been around longer and has more configuration options, but c8 is built to leverage the native V8 coverage and might be faster and more accurate for Node.js applications.
Jest is a testing framework that includes built-in code coverage reporting. While Jest is primarily a testing framework, its coverage tool is often compared to standalone tools like c8. Jest's coverage is implemented using Istanbul under the hood. Compared to c8, Jest provides an all-in-one solution for testing and coverage but may not be as lightweight if you only need coverage reporting.
Coveralls is a web service that helps you track your code coverage over time, ensure that all your new code is fully covered, and integrate with your CI environment. While not a coverage tool itself, it works with tools like c8 or nyc to provide visibility into code coverage statistics. Compared to c8, Coveralls adds a layer of historical tracking and visualization to coverage data.
Code-coverage using Node.js' built in functionality that's compatible with Istanbul's reporters.
Like nyc, c8 just magically works:
npm i c8 -g
c8 node foo.js
The above example will output coverage metrics for foo.js
.
c8 can be configured via command-line flags, a c8
section in package.json
, or a JSON configuration file on disk.
A configuration file can be specified by passing its path on the command line with --config
or -c
. If no config option is provided, c8 searches for files named .c8rc
, .c8rc.json
, .nycrc
, or .nycrc.json
, starting from
cwd
and walking up the filesystem tree.
When using package.json
configuration or a dedicated configuration file, omit the --
prefix from the long-form of the desired command-line option.
Here is a list of common options. Run c8 --help
for the full list and documentation.
Option | Description | Type | Default |
---|---|---|---|
-c , --config | path to JSON configuration file | string | See above |
-r , --reporter | coverage reporter(s) to use | Array<string> | ['text'] |
-o , --reports-dir , --report-dir | directory where coverage reports will be output to | string | ./coverage |
--all | see section below for more info | boolean | false |
--src | see section below for more info | Array<string> | [process.cwd()] |
-n , --include | see section below for more info | Array<string> | [] (include all files) |
-x , --exclude | see section below for more info | Array<string> | list |
--exclude-after-remap | see section below for more info | boolean | false |
-e , --extension | only files matching these extensions will show coverage | string | Array<string> | list |
--skip-full | do not show files with 100% statement, branch, and function coverage | boolean | false |
--check-coverage | check whether coverage is within thresholds provided | boolean | false |
--per-file | check thresholds per file | boolean | false |
--temp-directory | directory V8 coverage data is written to and read from | string | process.env.NODE_V8_COVERAGE |
--clean | should temp files be deleted before script execution | boolean | true |
--all
By default v8 will only give us coverage for files that were loaded by the engine. If there are source files in your
project that are flexed in production but not in your tests, your coverage numbers will not reflect this. For example,
if your project's main.js
loads a.js
and b.js
but your unit tests only load a.js
your total coverage
could show as 100%
for a.js
when in fact both main.js
and b.js
are uncovered.
By supplying --all
to c8, all files in directories specified with --src
(defaults to cwd
) that pass the --include
and --exclude
flag checks, will be loaded into the report. If any of those files remain uncovered they will be factored
into the report with a default of 0% coverage.
c8
can handle source-maps, for remapping coverage from generated code to original source files (useful for TypeScript, JSX, etc).
Just-in-time instrumented codebases will often insert source maps inline with the .js
code they generate at runtime (e.g, @babel/register
can be configured to insert a source map footer).
Pre-instrumented codebases, e.g., running tsc
to generate .js
in a build folder, may generate either inline source maps, or a separate .map
file stored on disk.
c8
can handle loading both types of source maps.
Depending on the size and configuration of your project, it may be preferable to apply exclusion logic either before or after source-maps are used to remap compiled to original source files.
--exclude-after-remap
is used to control this behaviour.
run c8 report
to regenerate reports after c8
has already been run.
c8 can fail tests if coverage falls below a threshold. After running your tests with c8, simply run:
c8 check-coverage --lines 95 --functions 95 --branches 95
c8 also accepts a --check-coverage
shorthand, which can be used to
both run tests and check that coverage falls within the threshold provided:
c8 --check-coverage --lines 100 npm test
The above check fails if coverage falls below 100%.
To check thresholds on a per-file basis run:
c8 check-coverage --lines 95 --per-file
If you want to check for 100% coverage across all dimensions, use --100
:
c8 --100 npm test
Is equivalent to
c8 --check-coverage --lines 100 --functions 100 --branches 100 --statements 100 npm test
The --100
flag can be set for the check-coverage
as well:
c8 check-coverage --100
Sometimes you might find yourself wanting to ignore uncovered portions of your codebase. For example, perhaps you run your tests on Linux, but there's some logic that only executes on Windows.
To ignore lines, blocks, and functions, use the special comment:
/* c8 ignore next */
.
const myVariable = 99
/* c8 ignore next */
if (process.platform === 'win32') console.info('hello world')
const myVariable = 99
/* c8 ignore next 3 */
if (process.platform === 'win32') {
console.info('hello world')
}
/* c8 ignore start */
function dontMindMe() {
// ...
}
/* c8 ignore stop */
const myVariable = 99
const os = process.platform === 'darwin' ? 'OSXy' /* c8 ignore next */ : 'Windowsy'
c8 uses native V8 coverage,
make sure you're running Node.js >= 10.12.0
.
c8
See the contributing guide here.
FAQs
output coverage reports using Node.js' built in coverage
The npm package c8 receives a total of 1,976,840 weekly downloads. As such, c8 popularity was classified as popular.
We found that c8 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.